All Questions
2 questions
2votes
2answers
4kviews
Missing header file linux/io_uring.h
#include <linux/io_uring.h> main.c:1:10: fatal error: linux/io_uring.h: No such file or directory #include <linux/io_uring.h> ^~~~~~~~~~~~~~~~~~ Kernel version 5.4.0-80. I ...
0votes
1answer
426views
Can I use LXC library in my c program?
Currently, I am designing a c program that will create multiple container and put different applications into them separately to achieve isolation. Is it possible to leverage LXC library to it? I ...